1

今天的任务是生成一个高度自适应的textarea,而且也可以设置最小高度和最大高度。
最简单的方法
textarea的属性是overflow:auto;那么如果内容的高度大于textarea本身的高度时,可以把textarea的高度设置成scrollHeight

let textarea = document.getElementById('textarea');
textarea.style.height = textarea.scrollHeight + 'px';

这种方法能解决textarea从小变到大的过程。但是有一个问题,当想从大变到小的时候,这个scrollHeight不能反映文字的实际高度,所以这个方法不是很适合。

高度跟着文字的多少走的,而且不需要动画。
如果不需要设置最小高度,一直是跟着文本的高度走的,可以采用这种方式:
auto-textarea: stackoverflow
这种方式的主要是先把textarea的height设置成auto,然后再设置:


textarea.style.height = 'auto';
textarea.style.height = textarea.scrollHeight + 'px';

但是这个设置还有一个问题,如果变化高度时,想要有一个动画过程,这样设置就不行。

ant.design用的方式
生成一个无用的textarea,用来计算textarea的高度。

let hiddenTextarea;

const factors = [
    "letter-spacing",
    "line-height",
    "padding-top",
    "padding-bottom",
    "font-family",
    "font-weight",
    "font-size",
    "text-rendering",
    "text-transform",
    "width",
    "text-indent",
    "padding-left",
    "padding-right",
    "border-width",
    "box-sizing"
];

export default function calculateNodeHeight(utext){
    // debugger;
    if (!hiddenTextarea) {
        hiddenTextarea = document.createElement('textarea');
        document.body.appendChild(hiddenTextarea);
    }


    let cssStyle = window.getComputedStyle(utext);
    let styleSize = factors.map(n=>{
        return  n + ':' + cssStyle.getPropertyValue(n)
    }).join(";")

    hiddenTextarea.setAttribute('style', styleSize);
    hiddenTextarea.value = utext.value || utext.placeholder || '';

    let height = hiddenTextarea.scrollHeight;
    hiddenTextarea.value = '';
    return {
        scrollHeight: height
    }

}

jyren_Rachel
107 声望4 粉丝

« 上一篇
ES6: 数组